You are on page 1of 27

question 37.

(��ѡ)

��������Asp.net�еĴ�������ļ��������� ����

����1. web����ҳ�ij����� ��ɴ�����ɣ���Щ����Ĵ��������봰�彻�������� �Ψһ���û����治ͬ

���ļ��С����ļ�����Ϊ��������‫��ء‬ļ��������C�����������ļ�
����2. ��Ŀ������web����ҳ�Ĵ�������ļ����������.exe�ļ�
����3. ��Ŀ�����е�Web����ҳ�Ĵ�������ļ������������Ŀ��̬t� .dll���ļ�
����4. ��� �����

question 38. (��ѡ)

����what compiler switch creates an xml file from the xml comments in the files in
an assembly?

����1. /text
����2. /doc
����3. /xml
����4. /help

question 39. (��ѡ)

��������Ĵ���ʵ�������ģʽ�е�ʲôģʽ

����public class a {
����private a instance;
����private a() {
����}

����public static a instance {


����get
����{
����if ( a == null )
����a = new a();
����return instance;
����}
����}
����}

������1. factory
������2. abstract factory
������3. singleton
������4. builder

question 40. (��ѡ)

class class1
{
public static int count = 0;
static class1()
{
count++;
}
public class1()
{
count++;
}
}
class1 o1 = new class1();
class1 o2 = new class1();

�������ʣ�class1.count��ֵ�Ƕ��٣�( )

������1. 1
������2. 2
������3. 3
������4. 4

question 41. (��ѡ)

abstract class baseclass


{
public virtual void methoda()
{
console.writeline("baseclass");
}
public virtual void methodb()
{
}
}
class class1: baseclass
{
public void methoda()
{
console.writeline("class1");
}
public override void methodb()
{
}
}
class class2: class1
{
new public void methodb()
{
}
}
class mainclass
{
public static void main(string[] args)
{
class2 o = new class2();
o.methoda();
}
}

�������ʣ�� ����������:

������1. baseclass
������2. bassclass class1
������3. class1
������4. class1 bassclass

question 42. (��ѡ)


public static void main(string[] args)
{
int i = 2000;
object o = i;
i = 2001;
int j =(int) o;
console.writeline("i={0},o={1}, j={2}",i,o,j);
}

������1. i=2001,o=2000,j=2000
������2. i=2001,o=2001,,j=2001
������3. i=2000,o=2001,,j=2000
������4. i=2001,o=2000,j=2001

question 43. (��ѡ)

������Ҫ����asp.netӦ�ó�����������Allwin�� �‫���ڲ‬Webվ� ���Ӧ�ó������50��ҳ�档

����Ҫ�������Ӧ�ó����

����һ��HTTp�������ʱ�������ʾһ��� ���Ĵ���ҳ����û�������Ҫ����С�Ĵ�������ЩĿ�

��Ӧ����ô��(��ѡ)

������1. �����Ӧ�ó����Global.asax�ļ��д���һ��Application_error���ȥ����asp.net�������
������2. �����Ӧ�ó����Web.config�ļ��д���һ��applicationerror��ȥ����asp.net�������
������3. �����Ӧ�ó����Global.asax�ļ��д���һ��Customerrors�¼�ȥ����http����
������4. �����Ӧ�ó����Web.config�ļ��д���һ��Customerrors��ȥ����http����

question 44. (��ѡ)

�������³�������н���ǣ�

public abstract class a


{
public a()
{
console.writeline('a');
}
public virtual void fun()
{
console.writeline("a.fun()");
}
}

public class b: a
{
public b()
{
console.writeline('b');
}

public new void fun()


{
console.writeline("b.fun()");
}
public static void main()
{
a a = new b();
a.fun();
}
}

������1. a b a.fun()
������2. a b b.fun()
������3. b a a.fun()
������4. b a b.fun()

question 45. (��ѡ)

����which of these string definitions will prevent escaping on backslashes in c#?*

������1. string s = #��n test string��;


������2. string s = ����n test string��;
������3. string s = @��n test string��;
������4. string s = ��n test string��;

question 46. (��ѡ)

����which of the following operations can you not perform on an ado.net dataset?

������1. a dataset can be synchronised with a recordset.


������2. a dataset can be synchronised with the database.
������3. a dataset can be converted to xml.
������4. you can infer the schema from a dataset

question 47. (��ѡ)

����in object oriented programming, how would you describe encapsulation?

������1. the conversion of one type of object to another.


������2. the runtime resolution of method calls.
������3. the exposition of data.
������4. the separation of interface and implementation.

question 48. (��ѡ)

����how does assembly versioning in .net prevent dll hell?

������1. the runtime checks to see that only one version of an assembly is on the
machine at any one time.
������2. .net allows assemblies to specify the name and the version of any
assemblies they need to run.
������3. the compiler offers compile time checking for backward compatibility.
������4. it doesn��t.

question 49. (��ѡ)

�������ֳ��õ��ַ��пմ�������

������1: bool isempty = (str.length == 0);


������2: bool isempty = (str == string.empty);
������3: bool isempty = (str == "");
�������ַ�����죿

������1. 1
������2. 2
������3. 3

question 50. (��ѡ)

public sealed class samplesingleton1


{
private int m_counter = 0;
����private samplesingleton1()
{
console.writeline(""��ʼ��samplesingleton1��"");
}

public static readonly samplesingleton1 singleton = new samplesingleton1();

public void counter()


{
m_counter ++;
}
}

������� ���ʵ�������ģʽ�е�����ģʽ��

������1. ��
������2. ��� �
������3. ����
������4. �����

ʮһ.
1��<%# %> �� <% %> ��ʲô���
<%# %>��ʾ� ����
<% %>�Ƿ����� ����
2�����´�����
ܷ ͨ����룿����‫���ܣ‬ij��� ���룬��˵�� ��

<html>
8 <%
9 int subtract(int num1, int num2) {
10 return num1-num2;
11 }
12 %>
13 <body>
14 <%
15 int number = 100;
16 while (number > 0) {
17 response.write("value: " + number + "<br/>");
18 number = subtract(number, 1);
19 }
20 %>
21 </body>
22 </html>
3����
ͨ Web Site administration tool (in vs2005) ����ʵ����Щ���‫�ܣ‬web site

administration tool ��� �����Щ�ļ������ Ļ���ӣ�

4������һ�´� ��original_�� ǰ ��Data parameter� ���ǰ ��Data parameter��ʲô���������


ͬ ü
Ĵ���˵��
5��� �����Ĵ���Σ�ʹgridview��update��‫�ݡ‬
datasourceid="sqldatasource1" datakeynames="id" autogeneratecolumns="false">
selectcommand="select [id], [lname], [fname] from [authors]"
connectionstring="" />

6��gridviewû������insert �� Ĺ��‫��������ܣ‬gridview��insert��‫�����ݣ‬ʲô�뷨��
7��asp.net 2.0 �ĸ�Щ������������� �����ĵģ�Ϊʲô����Ҳ����̸c��2.0��
asp.net 2.0�����1.1 ����3������,
1,������f
a һ����(masterpage)
b �� ����
c ��� �
d ��� �
2 ������f�����(����web.config)
3 ����Ч��,�������˵ķ���
8������Asp.net 2.0��vs2005��������ǰʹ�õĿ������ �.net

1.0��������ʲô�������������ǰ��ƽ̨��ʹ�õ���Щ���� �루 pattern /

architecture��������ֲ��asp.net 2.0�� (�����Ѿ���Ƕ��asp.net 2.0��)

1 asp.net 2.0 ��һЩ�������� �1.0�������,���‫�����װ‬


ͬ ����
ܼ ˺����
ܶ .

2 ͬʱ֧�ִ�������ҳ��Ƕ������ ���}��ģʽ,��ǰ1.0�汾,.net��ʾ����ֻ���‫���ڷ‬Ĵ����ļ�,�

���ҳ��Ƕ������ ����ð�����ʾ,

3 �������ƽ����л���ʱ��,2.0֧�ֹ�궨 λ.����ұȽ�ϲ��

4 �‫����ڰ‬,���ķ�ҳ.update,delete,�Ȳ����� �� �����,����� �ѧ��

5, ��asp.net�������40����µĿ �,����� ���

9��������ѧϰ���������demo��һ����ң���� �������demo�����һ����Ŀ�з�����

ʮ��.
һ.�����
1.c#��� �������_____?
2.������a��ֵ��һ��object����ʱ������a��� _____?

3.��� ��_____�ֿɷ�����ʽ��
4.public static const int a=1;��δ����д���ô����ʲô��
5.float f=-123.567f;
int i=(int)f;
i��ֵ������_____?
6.����operator�����ҽ�������==����ʲô����ô?
7.ί������Ĺ �����______?
8.��sealed���ε�����ʲô�‫ص‬

9.��asp.net�����е�� ����û�� �������̳���________?

10.��.net�����п����л���� �����Ϊ_____?

11.��.net��������
ܴ Dz��õ����‫����������©�ڴ‬Ϊ����______?
12.����Ĵ�������ʲô������_______
using system;
class a
{
public virtual void f(){
console.writeline("a.f");
}
}
abstract class b:a
{
public abstract override void f();
}

13.����tֻ������˽��ʵ���캯��ʱ������t�ij����õ�� ��______������ or ����� ���T

������µ�� ____������ or ����� �ֱ�Ӵ���t���κ�ʵ��


14.������δ����д���ô��
switch (i){
case():
casezero();
break;
case 1:
caseone();
break;
case 2:
dufault;
casetwo();
break;
}
15.��.net�У���system.web.ui.page ��� ��̳�ô��

��.�����
1.��c#��using��new��}�� �����ʲô���壬��д������֪�5����壿
2.�������������
using system;
class a
{
public a(){
printfields();
}
public virtual void printfields(){}
}
class b:a
{
int x=1;
int y;
public b(){
y=-1;
}
public override void printfields(){
console.writeline("x={0},y={1}",x,y);
}
��ʹ��new b()����b��ʵ��ʱ������ʲô���
3.�����������

using system;
class a
{
public static int x;
static a(){
x=b.y+1;
}
}
class b
{
public static int y=a.x+1;
static b(){}
static void main(){
console.writeline("x={0},y={1}",a.x,b.y);
}
}
������������ʲô��
4.̸̸�� ṹ�����
5.һ���Ϊ10000���ַ�ͨ������a-z�г�ȡ10000���ַ���ɡ�����c�����Ա�д��Ҫ��

��4ʵ�֡�
6.���������һ��ö����� �
enum color:byte{
red,
green,
blue,
orange
}
��дһ�γ�����ʾ��ö�������ж�������з������ ����Ƕ�Ӧ����ֵ��

7.���˽����ģʽô�����г�����֪�5����ģʽ����ơ�

8.����sql server����Ʊ�4����һ����‫�״‬ṹ����֯�ṹ ������ṹ ��ֻ�������һ������

��Ҫ���棩����������ѯijһְλ�µ�����ְλ����һ��洢���4ʵ�֣�����ʲô ·��

9.ʲô����SQL ‫�ע‬룬��η�ֹ�������˵��
10.������δ������ʲô��Ϊʲô��
int i=5;
int j=5;
if (object.referenceequals(i,j))
console.writeline("equal");
else
console.writeline("not equal");

��:
1 ?:
2 ‫��װ‬
3 3��
4 const�� ����static����Ӧ��ȥ��static
5 ��123
6 Ҫʱ�
ͬ �Equale��Gethash() ? ������"==" � ������� "!="
7 delegate
8 ���ɱ��̳�
9 system.web.ui.usercontrol
10 [serializable]
11 gc
12 abstract override �Dz�����һ������
13 ����� �������
14 case():���� default;
15 ����

1 using ����һ����� ����ʹ����һ������� �������IDespose��new ʵ��һ���

� �����һ������� �����ȫ��д� �����


2 x=1,y=0
3 x=1,y=2
4 ������һ����������� �һ����ֵ���� Ĭ�ϳ�Ա����Ϊpublic������һ�����

ʮ��.
.net & c# ��֪ʶ���� (20%)

1. ��.net��c# or vb.net������λ�õ�ǰ����� ��ľ���‫��ر‬ǿ �����ľ�����о ٣���


��:this(c#) me(vb.net).

2. ��.net��c# or vb.net��������û�� �����Ϣ�����‫����ڴ‬д�����Щ��Ϣ��


��:
��form������defwndproc����4������Ϣ:
protected override void defwndproc ( ref system.winforms.message m )
{
switch(m.msg)
{
case wm_lbutton :
��///string��mfc�е�Cstring��Format�����ʹ�÷�������ͬ
��string message = string.format("� ���Ϣ!����Ϊ:{0},{1}",m.wparam,m.lparam);
��messagebox.show(message);///��ʾһ����Ϣ��
��break;
case user:
����Ĵ���
default:
��base.defwndproc(ref m);///���û��ຯ������ �����Ϣ��
��break;
}
}

3. ��.net��c# or vb.net���������һ�����
��:process

4. ��.net��c# or vb.net�������ȡ��һ����Ĺ ‫ر‬ա�


��:
private void form1_closing(object sender, system.componentmodel.canceleventargs e)
{
e.cancel=true;
}

5. ��.net��c# or vb.net���У�appplication.exit ���� form.close��ʲô����


ͬ
��:һ�����˳����Ӧ�ó���һ���ǹ ‫�����ر‬һ��form

6.
��c#����һ��double�͵õ� ������10321.5������122235401.21644����Ϊ��ҵ�ֵ��ΰ������ҵ�ϰ��
ͬ 4���
����9���$10,321.50��$122��235��401.22����Ӣ����Ϊ��10 321.50�͡�122 235 401.22
��:
system.globalization.cultureinfo myculture = new
system.globalization.cultureinfo("en-us");
//system.globalization.cultureinfo myculture = new
system.globalization.cultureinfo("en-gb");ΪӢ��������
decimal y = 9999999999999999999999999999m;
string str = string.format(myculture,"my amount = {0:c}",y);

7. ijһ�����ʹ��K��l��m��n��o��5����ĸ�������еĵ��ʴ����������У����뵥�ʱ�����ѭ���¹���

��1�� ���뵥�ʵ���С������}����ĸ����������Ҳ���
ͬ ͬ�
��2�� k�������ǵ��ʵĵ�һ����ĸ
��3�� ���L���֣�����ִ���ֹһ��

��4�� m����ʹ���һ��Ҳ�����ǵ���‫�����ڶ‬ĸ

��5�� k���֣���n��һ������
��6�� o��������һ����ĸ����lһ������
����һ��������һ����ĸ��� ���Lo�е�O���棬�γ�һ��3����ĸ�����뵥�ʣ�
a) k b)l c) m d) n
��:b

����������ܵõ�����ĸ��k��l��m����ô���
ܹ γɵ�}����ĸ�������뵥�ʵ������Ƕ��٣�
a)1�� B)3�� C)6�� D��9��
��:a

������������һ���ǵ������룿
a) klln b) loml c) mllo d)nmko
��:c

8. 62-63=1 ��ʽ����b�����ƶ�һ�����֣��������ƶ���ź͵��‫ں‬ţ���ʹ�õ�ʽ��b������ƶ���
��:62�ƶ���2��6�η�

ʮ��.
1.ado.net������ ����ķ���� ���?
2.t-sql��is null��null �����?
3.��̬�����Ŀ �postback���Ƿ��� �����4,Ϊʲô?

4.webserver�첽���õ�ʹ�û�����Ŀ��?

5.webserver� ����첽���úͷ�����첽����ʵ�ֵIJ�ͬ��
6.close��dispose�����
7.datatable ��һ���b�õ��ģ����,Ϊʲô?
8.������ͷdz�������

ʮ��.
.net����� 1��

q������ʲô����»��õ��鷽�������� ���ʲô����
ͬ
q��override��������ʲô���

override��4��д����ķ���������ʹ������ķ���������ӵ�в����͵IJ���
ͬ ͬ

�����븲�ǵ����

1�������ĸ��������� ���֮��Ĺ�ϵ���Ǵ�ֱ��ϵ��������������һ�����з���
ͬ ֮��Ĺ�ϵ����ˮƽ��ϵ��

2������ֻ����һ�������ֻ����һ� ��������ϵ�������������Ƕ���֮��Ĺ�ϵ��
ͬ
3������Ҫ������б���������Ҫ������б ͬ��
4�����ǹ�ϵ�У������Ǹ���壬�Ǹ� ������� ������Ӧ�洢� ���� �4������‫�ع‬ϵ���Ǹ�

���ʱ��ʵ�α����βα�4ѡ� ���ġ�

q��������⾲̬�� ��

q���������������м��ַ�ʽ��

q�������һ��B/S�ṹ��ϵ ����Ҫ���

� ֵ�������ֲ���ʹ��session��cookie��application�����м��ַ������д��

q����.net��b/s�ṹ��ϵ �������ü���ṹ4������ÿһ��֮��Ĺ�ϵ� �ΪʲôҪ����ֲ

q�����������һ���м��� Σ�ÿ�� ε����ã�

q�� ���Ƴ���һ
�е� ϵ� Application block��� 5�֪�����‫�ٳ‬Application block��˵�������ã�
q�����о�һЩ���õ�������ģʽ� ���ʲô�����ʹ�ø�ģʽ��
q�����Webservice����
q���� �̵���Ȥ��Σ������������������������ȥ���ģ���һ������ȥ���� ��õ��ˮƽ��
q������ְ�� ����ʲô��
���¼�����Ŀ����� ����Ϊ�� �
��������Ľ��·��
ͷ
q����
ͨ t����������IJ���
Q�����̱���ҳ��������textbox� �������ֵΪstring.empty��

q������ʵ��һ��ð�������㷨��

.net����� 2��

һ���� ���Ƶ������⣬������‫�ص‬͹��ο��Ľ������¡�

==================================

һ������ҵ,��10000�� ��
� ,ÿ��� ·�һ�ι���,��Ϊ����ҵ���һ������ ��(.� �Ϊsql server).

��� ����‫�� ���������ص‬ʱ��������һ��ϵ �����ܺ·��‫ٶ‬ȿ���� ⡣

-----------------------------------------
�ɹ��ο��Ľ����м�� ϣ���Ҳ��䣺

1.��b�����DZ���ġ�

һ ������Ƴ�}�� һ����
һ
2. һ� 4���һ���� 4��ѯ������� ֻ���������ɶ�ʱ���

‫������ڵ���ݣ‬ƶ��� ��ѯ���Ѽ�¼��

3.��ѯ���������ŵĴ 洢��̡�

.net����� 3��

1.дһ��ʵ�ֶ�һ���ַ�‫�ת‬ķ���������һЩ���������а�(����������.����������Ʋ�������

2.��һֽ֧����Ʋ�����������ǹ���õ�����һ����ijһ֧�‫ܵ����ض‬õ���

������� �����
3.ʲô�Ƿ��
4.��singleton���д���ģʽ
5.c#�е�,���� ���������ģ�
6.ʲô��application pool��
7.t���������� ���ʲô��ȱ��.
8.remoting�‫������� �� ڿ‬ôʵ�� ?
9.ʲô���� ����
10.�ñ� c���ʵ�ֶ�̬��

11.ʲô���麯��
12.ʲô�dz�����

13.ʲô���‫�ڴ‬й©�������� ķ����жϱ���й© ?

Ӣ����
14.��Ӣ�Ľ���һ��ʹ��c#/c++�����Ŀ����Ҫ����
15.���Ҫ���9�绰���飬��������9�Ĺ���ʦ��ͨ

16.����ϰ���Ϊ��ļ�����������ô�‫�ش‬

�� �֪ʶ��

17.ʹ��ʲô����4���ô 洢���

18.sql server��}�������Ǻ���ʽ����������ã��������ȱ�
19.�����������

����֪ʶ�⼰����
20.ʲô��web service��
21.ʲô��xml��
22.socket��ôʵ�֣�

.net����� 4��
1�� ð������ ��C:\data.dat �ж� ��� 1��100��20��10��50��33

2�� ����һ�����������Ľ‫�׳‬

3�� ��̬��ô��ʵ�֣������ � ‫���� ����ڡ‬鷽��

4�� �� ��ֻ�����Ե����

5�� �� � ɾ
ɾ������
� ����������� �����
ɾ
ɾϵ

6�� ����i am a student����‫�� ��ת‬student a am i��������ʹ�ÿ⺯��

7�� please briefly explain the procedure to setup the operation system for pc

8�� ����animals�еĹ�dog��ècat������ҧ������

9�� html����‫����ת‬aspx

10�� ��ҳ�����

11����������ϵ����ɾ��

12�� ���ṹ����ģ������ϣ�

13�� id ʵ�ʷ��� �Ʒ���

1 ���� ����

2 ���� ����

3 ���� ����

���� ���� ����

��sql�����ʾ���½���

����
ܷ �‫���ڶ‬Ϊ1��2��ĺ�

������Ϊǰ}���������ĺ�

14�� c#������ʵ�ֶ��̳ У��̳�һ��� ʵ��һ�� ‫�ڣ‬

15�� 1-2+3-4+5-6+7-����+n

����һ�����ּ����ֵ��‫��ע‬nֵ� �‫�������������⴦�ע‬⣬‫������ע‬Ͻ�

16�� stringbuilder���������‫�ص‬

17�� ���}����� � �Ľ�����Ҫ���õ�����


18�� 1��1��2��3��5��8��13��21��32������дһ�δ����ҳ��30����

19�� remoting��web serverd��ʲô�� ��


�����
Ե

20�� ����}���볧 ʱ������


ͬ }�� ��������� ���������

table1

fname �볧 ʱ��
��������

user1 12-06-2004
12-01-1994

user2 12-06-2004
12-01-2000

�볧 ʱ�� fname1 fname2


�������

12-06-2004 user1 user2


365

ʮ��.
1��asp.net�е������֤����Щ��� ǰ��Ŀ����ʲô��ʽ��֤�����

2��ʲô��web� ���ʹ��web� �����Щ���ƣ�


4����̸̸��������ʽ�Ŀ�����
5��asp��net�й��м������͵Ŀ �������ʲô���

6��web� ���� ���������¼�����̸̸������¼�����ô��������� � � �������ʲô��ΪʲôҪʹ��� ����‫�ء‬

7��web� ���html���� �����


ܷ ÿ �� ���������‫��������ܣ‬ε��ã�
8��asp��net��asp�����ʲô���ƣ�
9�������web.config�ļ��е���Ҫ�‫�ڵ‬

10�������asp��net�е�webҳ�����������֮��Ĺ�ϵ��

11��ʲô��viewstate������
ܷ ã��Ƿ����ÿ ������Խ���?

13�������ֲ���
ܶ ȡҳ���ϵ���������ʱ���п�����ʲô ����ɵģ���ô���

14�������һ��WEBҳ���д���ִ�д���
15�������ʲô�������Ķ�����ʲô�����Ҫʹ�������Ķ���
16�������‫�����ת������ת‬

17�������asp.net�в�ҳ��
ͬ ֮���� �������Щ��ʽ��

18�������asp��net��button linkbutton imagebutton ��hyperlink���ĸ� �֮��Ĺ���

19�������һ�¡�net���Ӧ�ó����в����֮�����Ǽ��ַ�ʽ������‫����� ���������� ��ݡ‬Ŀ�в������ַ�ʽ���С�

20��������asp��net�е��¼���������������
ܴ ʲô ����ɣ�
21�������Ҫ��datagride� ��е�ijһ���������-�б� ������ô���

22�������asp.net�е��� ��봫 �� ���ʲô���

23�������.net����ί��ʵ�ֵ��¼�ģ����java�в��ý �ʵ�ֵ��¼�ģ����ʲô����� ʾ��ʽ���͡�

24������ ‫���ڵ‬ʽʵ����ʲô���壿

ʮ��.
1. new � ����÷�

(1)new �����

���‫��͵�������ڴ‬ù��캯��

(2)new ���η�

���������� ��̳ г� ��

(3)new ��

�����‫��� ������������ ���������ڷ‬IJ�������͡�

2.��ΰ�һ��Array���Ƶ�arraylist��

(1) ʵ��1

string[] s ={ "111", "22222" };

arraylist list = new arraylist();

list.addrange(s);

(2)ʵ��2

string[] s ={ "111", "22222" };

arraylist list = new arraylist(s);

3.datagrid��Datasouse����l��ʲô���

l datatable

l dataview

l dataset

l dataviewmanager

l �κ�ʵ��ilistsource� ‫���ڵ‬

l �κ�ʵ��ilist� ‫���ڵ‬
4.����������л�

����

�����������п���������Ӧ�ó��������ֹ����(��ÿ���� ��‫���ص‬Ӧ��Ӧ�ó������ �����ÿ����������

�νṹ���‫ڴ‬沼�֡�

��� �ģ�飬��ģ������ ������ְ�� ���������ṩ� �‫� ���װ‬ģ������͵Ķ��������ʹ�÷�� ̬�

‫�͵������ش‬ʵ����� ����ж�� �����ж����л� �


���͡� �������͵ķ�����������
� Ե ֶ ���� �
κ

���л�

���л��ǽ�����‫��״̬ת‬Ϊ�ɱ��ֻ���ĸ�ʽ�Ĺ�̡������л���Ե��Ƿ����л�������‫��ת‬Ϊ������}���̽����4�������

��ɵ ‫ش‬洢�ʹ�����‫�ݡ‬

5.����O/R mapping �� ��

���÷�� ���ý�������� ��ӳ�

6. �ɷ���� ������ļ���

l public ���ʲ������ơ�

l protected ���ʽ����‫����ڰ‬Ӱ�����������͡�

l internal ���ʽ����‫�ڵ‬ǰ��� �

l protected internal ���ʽ����‫ڴ‬Ӱ�������ĵ�ǰ��� ����͡�

l private ���ʽ����‫�͡����ڰ‬

7. sealed ���η���ʲô�‫�ص‬

sealed ���η����Ӧ����� ʵ������ ����


ܷ ���
ܱ ̳С��ܷ ������д�����еķ�������� �

�����κ��������н�һ����д����Ӧ���‫���������ڷ‬ʱ��sealed ���η����ʼ���� overrideһ��ʹ�·�

8.�о�Ado.net�еĹ��������‫��� ��ض‬

������

dataset

datatable

datarow

datacolumn
datarelation

constraint

datacolumnmapping

datatablemapping

�‫���ض‬

(x)connection

(x)command

(x)commandbuilder

(x)dataadapter

(x)datareader

(x)parameter

(x)transaction

9.ִ����������

string strtemp ="abcdefg ijijij"��

int i=system.text.encoding.default.getbytes(strtemp).length;

int j=strtemp.length;

�ʣ�

i=?

j=?

i=(14 ) ��j=(11 ) ����}���ֽ�

10.c#�У�string str = null �� string str =""���뾡 ������˵�����

string str =""��ʼ��������� �

��string str=null��ʼ������

11.����.net��class��struct����ͬ

�ṹ��� � ��������ͬ���
�����ṹ�����������
ܵ Ƹ�
���ܽṹ�ľ�̬�ֶο�� ʵ���
�ʼ�����ṹ ֶ������Dz���ʹ�ó�ʼֵ�趨�

�ṹ��������Ĭ�Ϲ��캯��û�в���Ĺ��캯��������

�ṹ�ĸ����ɱ������ ���������٣���˲���Ҫʹ ��Ĭ �Ϲ�� 캯

��������ʵ���ϣ���������Ϊ�����
ͨ ֶθ���Ĭ��ֵ���μ�Ĭ��ֵ� 4ʵ��Ĭ�Ϲ��캯��ṹ�����������
ܴ ṹ�̳С�

�ṹ��ֵ���� -- ��� ṹ����һ���� ��ö�� �ij��� ���� ���ṹ��ȫ��ֵ�����ư�ṹ�õ� ʱ��������������

‫���������¸����ݣ‬κ�� Ķ�����õ�ɸ�������‫ݡ����ڽ‬ṹ��ʹ�����ã���˽ṹû�б�ʶ -- ��������


ͬ

�}��ֵ����ʵ����� ���ֵġ�c# �е�����ֵ��� ����϶��̳��� valuetype�����̳ ��� object��

�����������һ���Ϊ ‫��װ‬Ĺ���н�ֵ����‫��ת‬Ϊ�������͡�

�ṹ���������‫ص‬㣺

l �ṹ��ֵ��� ��������������͡�

l � ���� ṹʱ���ṹ����
ͨ ֵ��ʽ��� ģ�������Ϊ���ô�� ġ�

l ��� ͬ���ṹ��ʵ���� �ʹ�� new �����

l �ṹ���������캯�����DZ�������

l һ��ṹ������
ܴ һ��ṹ����̳У����Ҳ�����Ϊһ����Ļ����нṹ��ֱ�Ӽ̳���

system.valuetype�����̳ ��� system.object��

l �ṹ����ʵ�ֽ ‫�ڡ‬

l �‫ڽ‬ṹ�г�ʼ��ʵ���ֶ��Ǵ���ġ�

12.ʲô��Ӧ�ó�����ʲô���й��
ܴ 룿 ʲô��ǿ����ϵ ��ʲô��‫ �� ��װ‬ʲô�����‫�أ‬cts��cls��Clr�ֱ���ν�� �

Ӧ�ó�����

Ӧ�ó�����Ϊ��ȫ� ��ɿ�� ��汾����� �ж�‫����س‬ṩ� ��� 硣

Ӧ�ó������������п�����������п�������������Ӧ�
ͨ ó���ǰ����������п
֮ ⡣Ӧ�ó������ṩ��һ���ȫ����;�

��Ĵ�� �������������п��ʹ�øõ� �ṩӦ�ó���֮��ĸ��롣

���
ܴ

ʹ�û��‫����������ڹ‬п�����Ա�������Ĵ����Ϊ�й��
ܴ 룻�й����������
ܴ ŵ ���磺�����Լ��ɡ��������쳣���
� ǿ�İ�ȫ� ��汾���ƺ ���֧�֡�� �������ģ�͡���� ͷ����� �
��

‫��� ��װ‬

‫����������ֵʹ��� ��װ‬
ܹ Ϊ��� �ֵ����‫�װ‬佫�Ѹ�ֵ���ʹ�� object �������͵�һ��ʵ���С���ʹ��ֵ���Ϳ�� 洢

��,���� ��С����佫�Ӷ�������ȡֵ���͡�

����

ÿ����� �
������
Աͣ����һ��Ψһ��ǩ����ǩ���ɷ�����ƺ�һ������б
˳ ���ɡ� �����IJ���� ֻҪǩ�����
ͬ Ϳ

�����һ�������‫��ͬ��������ڶ‬ƵĶ��
ַ�����������}�ֻ���‫��ͬ�����־‬Ƶķ���ʱ��� ������
‫�ء‬

ctsͨ������ϵ (common type system)

һ��ȷ�������������п���ζ��塢ʹ�ú͹������͵Ĺ 淶��

clr�����������п�

.net framework �ṩ��һ���Ϊ�����������п������ʱ�����������д��벢�ṩʹ������̸����ɵķ���

cls������� 淶

Ҫ�����������ȫ�����������Щ������� �������ʵ�ֵģ��������ֻ����÷�������Щ���DZ�����֮���õ������

��Ե��
ͨ�ù� ‫�ܡ‬Ϊ� ���� ������ 淶 (cls)���������Ӧ�ó��������һ� ���� ��‫�ܡ‬

ǿ����

c# ��ǿ������� ����ÿ��� � �� �������������͡�

13.ֵ���ͺ��������͵����

����ֵ���͵õ� ֱ�Ӱ�ֵ����һ��ֵ��� � ������һ��ֵ��� � ʱ�������ư��ֵ�������������

� �ĸ�ֵ��ͬ���������ֵֻ��
��ƶ�ĸ�
�������ã����ƶ����

���е�ֵ���;��ʽ������ system.valuetype��

��������� ����
ͬ ֵ��� �����������µ����͡������������������ǣ��ṹҲ����ʵ�
ͬ ֽ ‫�ڡ‬

��������� ��
ͬ ֵ��� �����
ܰ null ֵ�� ��ɿ����͹������ null ����ֵ���͡�

ÿ��ֵ���;���һ���ʽ��Ĭ�Ϲ��캯��4��ʼ�������͵�Ĭ��ֵ��

ֵ������Ҫ��}����ɣ��ṹ��ö��
�ṹ��Ϊ���¼�� numeric����ֵ�����͡����͡������͡�decimal��bool���û�����Ľṹ��

�������͵õ� �ֳ�Ϊ��� ɴ 洢��ʵ���� ����·������������͵Ĺ

��֣�class��interface��delegate������������� � object��string

14.��������

ί�������� c++ ����ָ�룬��������� �ȫ�ġ�

ί�����������Ϊ������д��‫�ݡ‬

���‫����ڶ‬
ί�п����‫صص‬

ί�п���t����һ�����磬��� �һ���¼����ö�����

��������Ҫ��ί��ǩ��ȷƥ� �й ‫����ظ‬Ϣ����μ�Э�����

c# 2.0 �������������ĸ�� ��� ����� �������Ϊ����‫�� ��ݣ‬浥�6���ķ�����

15.c#�еĽ ‫�����ں‬ʲô����
ͬ

�죺

����ֱ��ʵ�� ‫�ڡ‬

� ‫������ڲ‬ʵ�֡�

� ‫ ���ڡ‬ṹ�ɴӶ�� ̳‫ڼ‬С�����c# ֻ֧�ֵ��̳У���ֻ��


ܴ һ�����̳�ʵ�֡�

�ඨ����‫� ��ͬ�ڲ‬ļ�
֮����в�֡�

ͬ��

� ‫ ���ڡ‬ṹ�ɴӶ�� ̳‫ڼ‬С�

� ������ �����‫̳�ڳ‬н ‫��ڵ‬κηdz������ �����ʵ� ֽ ‫����ڵ‬г� ��

� ‫� �����������������¼�� ��ڿ‬

һ�������ʵ�ֶ�� ‫�ڡ‬

16.asp.net�������֤��ʽ����Щ
windows �����֤�ṩ����

�ṩ�й���ν� windows �����֤�� microsoft internet ��Ϣ���� (iis) �����֤���ʹ��4 �� asp.net


Ӧ�ó���ȫ����Ϣ��

forms �����֤�ṩ����

�ṩ�й����ʹ����� ��Ĵ��봴��Ӧ�ó����‫��ض‬ĵ�¼���岢ִ�������֤����Ϣ��ʹ�� forms �����֤��һ�ּ�㷽

����ʹ�� asp.net �� �ʸ�� asp.net ��¼� �������һ���ṩ��һ��ֻ���� ���������Ϳ���� ����� ֤�͹

����û�ƾ� ķ�����

passport �����֤�ṩ����

�ṩ�й��� microsoft �ṩ�ļ��������֤�������Ϣ���÷���Ϊ��Ավ���ṩ��һ��¼�ͺ�������

17.� Ŀ¼������

active directory�洢���й�����������Ϣ�������ù��� ���û������


ܹ ɵ ‫��ز‬Һ�ʹ����Щ��Ϣ��active

directoryʹ����һ�ֽṹ������ 洢��ʽ����� ���Ϊ���Ŀ¼��Ϣ���к �� ��ķֲ���֯��

18.����һ��uddi��wsdl�����弰������

uddi

һ������ֺ ���Э��(uddi, universal description, discovery and integration)��һ�

���Web�ġ��ֲ�ʽ�ġ�Ϊweb�����ṩ����Ϣ ‫�����ע‬ĵ�ʵ�ֱ� �淶��ͬʱҲ��һ��ʹ��ҵ�


������
ܽ ṩ��Web����

‫�ʹ����ע‬ñ����ҵ�����ֵ
ܹ ķ���Э���ʵ�ֱ� ��uddi �ṩ��һ���� �‫�ڱ‬Ĺ 淶��������ͷ��ַ��

��ṩ��һ������������ʵ�֡�

wsdl

wsdl����web����Ĺ���� ‫�����ڡ‬һ�����Xml�Ĺ��������web����Ѷ
ͨ ��ʹ�õķ�������

l ���� url ������ �

l ���������� �������
ܻ ( SOap �ĺ�����ã���������˵��ģ�Wsdl � �����ȥ����������Ĺ

���‫�ݣ‬

l ��Ч�����б�

l ÿ����IJ���

l ÿ����������
l ÿ����ķ���ֵ�����������

19.ʲô��soap

soap��simple object access protocol ��� �����������


‫�ڷ‬ɢ��ֲ�ʽ�Ļ����н�����Ϣ��ִ�� �̹�̵��õ�Э�飬��һ�����Xml��Э�顣ʹ��soap�����ÿ����κ��‫��ض‬Ĵ���Э�

飨� �õĻ���httpЭ�飩�����������κ����͵Ķ������룬���κ�ƽ̨�ϣ����κ�һֱ����� ͨ�š�

soap ��һ���� ��Э�飬�����‫�ڷ‬ɢ�͡��ֲ�ʽ�����н����ṹ����Ϣ�� soap ���� xml

������һ�ֿ�)չ����Ϣ�����‫����ܣ‬ṩ��һ�ֿ�ͨ����ֵ‫�ײ‬Э����н�������Ϣ�ṹ��

���ֿ�����
ܵ ����Ҫ��b���κ�һ���‫��ض‬õ��ģ�ͺ������‫�ض‬ʵ�ֵ����塣

soap ������һ�ַ���� xml ��Ϣ�� a � �͵� b �㡣 Ϊ�ˣ����ṩ��һ�ֻ��� Xml

�Ҿ����������Ե���Ϣ�����1�‫)�� )ܣ‬չ��2) ������


ͨ ֵ‫�����ײ‬Э��ʹ�ã�3) ��b�‫��ڱ‬ģ�͡�

20.��β���һ��ASP.netҳ��

vs 2005��Vs 2003���з������ơ�2003��� ��� ���‫��ٸ‬Ʋ���

vs2005��� ���ֱ�Ӳ�� �Ӧλ�·�

21.������.net�е�,���� ���

.net framework ��,����������Ӧ�ó�����‫������ڴ‬ͷš�ÿ����ʹ�� new

���������ʱ�����п ���й�
ܶ Ϊ�ö�������‫ڴ‬档ֻҪ�й����
ܶ е�ַ�ռ���ã����п� ����Ϊ�
� ¶����� ռ ���ǣ��‫ڴ‬治

����� �ġ���� �,����������ִ�л������ͷ�һЩ�‫ڴ‬档,��������Ż����������

‫��ڽ‬еķ������ ��ִ�л�� ����ʱ� ��,�������ִ�л���ʱ�������й��


ܶ в��

‫�ٱ‬Ӧ�ó���ʹ�õĶ���ִ�б�Ҫ�IJ���4�������� �õ��‫�ڴ‬

ʮ��.
c#‫�ר‬⣺

1��c#�� property �� attribute��������Ǹ���ʲô�ô������ֻ��Ƶĺô������

һ������� ����‫ֶ���� �ڴ‬Σ�һ������� ���4��ʶ� �����ȵĸ������ʡ�

2. c#, java �� c++���‫�� ص‬ʲô���ĵ


ͬ ‫�ͬ�����ط‬ĵ‫���ط‬c#�ֱ��c++��java����ȡ��������Щ�ŵ

c#�Ǵ�Java �� c++��չ��4�ģ�������c++�ĸ�Ч�������‫ ص‬Ҳ������java�����������‫�� ��ص‬

‫��ָ�ڴ‬ȹ�����ŵ c#�� ���java��c����java�̳‫ڼ‬С�� �ʵ�֡��‫� ���ڴ‬쳣�����DZȽ����Ƶģ���ָ�룬


�����������ʽ�����‫ڲ��ٵ‬IJ��죻 c����c++�̳‫ڼ‬С�� �ʵ�֡��‫� ���ڴ‬쳣��� �
��ָ��� ������� ��‫� ڽ‬IJ��졣
java,c#���ǽ�b�����������ϣ���C++����

3��c#�ɷ���‫�ֱ����ڴ‬ӵIJ���(����Ǹ��ѵ�Ŷ��Ҫ ‫�ע‬⣡��

��� ���
� Ȼc�����������ʱ������� ʹ��
ʹ� ,�� ����
ʹ� �

ʹ � ���
‫�ڱ‬Ҫʱ��Ҳ�����ֹ�����,��� ���

4��c#�е�ί����ʲô���¼��Dz���һ��ί�У�

c# �е�ί�������� c �� C++ �еĺ���ָ�롣ʹ��ί��ʹ����Ա���Խ��������÷�‫��װ‬ί�ж����

‫�ڡ‬Ȼ����Խ���ί�ж�� �ɵ��������÷����Ĵ��룬����‫���ڱ‬ʱ֪�=������ĸ������ c �� C++ �еĺ���ָ�벻ͬ


��ί�������������� �ȫ�ģ������ǰ�ȫ�ġ�

���ϴ � ί����һ�ְ�ȫ�ĺ���ָ�룬�¼���һ����Ϣ����

5������һ��c#���������ʵ�ֹ�̣��Ƿ�ֻ�ܸ�����ֽ�������

������ʹ���� �����������
�ķ�ʽΪ���ṹʵ��ͬ� b���������������
‫����ڸ‬Ϸdz����ơ�����������ʵ�ֹ�̣�һ�������ж���������

������ �������get��set����������ʵ����ʹ���������Ϊ���������ͺ ����֧�����֣�

6��c#��Ҫʹһ����֧��Foreach����ʵ�ֹ������

һ������� ����̳� ienumerable�‫�� �ڹ‬캯���У��� ����Foreach�����‫������ݣ‬ṩ��ʵ�ֽ

‫���ڣ‬:����ʵ��� ����̳�Ienumerator���ġ�movenext��reset��current

�����ķ�����

7����c��ʵ�����¹���

a ����һ��int���飬����Ϊ100����������������1-100�����Ҳ����‫���ظ‬

b ��������ɵ�����������Ҫ֧����� ���}�� ��

�� �һ������}���Ϊ100�����飬����A��ֵ�4�Ϊ1��100������bΪ0�� ����for i ��100--

>1������һ��С�‫���ڵ‬iֵ�������a����b��i����a�� a����for l��a-->i a(i)=a(i+1)

ʹ����aΪ��ֵ������for i m��100-->1 ���mֵ��

���մ �������һ��

��� � int[] intarr=new int[100];

arraylist mylist=new arraylist();


random rnd=new random();

while(mylist.count<100)

int num=rnd.next(1,101);

if(!mylist.contains(num))

mylist.add(num);

for(int i=0;i<100;i++)

intarr=(int)mylist;

arraylist�����������

9�����г�c���м���ѭ���ķ�������ָ�����ǵIJ���
ͬ
���մ �while��do��for��for
each��while������ִ��0�Σ�do������ִ��1�Σ�for�����һϵ�б��ʽȷ��ִ�д���for each��ö��һ��ϵ� �

‫���أ‬Ϊ� ��
� ϵ�ÿ� �� ִ��һ��Ƕ����

11.��c���У�string str = null �� string str = ���� �뾡 ʹ�����ֻ� ��˵�����е����

�� �string str = null��ʾstrΪ��ֵ��string str = ������ʾstrΪ���ַ�����ʵ�������

��‫� �ר‬⣺

1��ά���� ������� �һ��� ���ϲ���


� ô��������д ҵ��� ���Ϊʲô

�� �ҵ��� �����ʵ��֤�������Ч�ʸ ���������ά��

���մ ���Ϊ���������ǿ�����ƣ�������Ϊ����Ӱ�죻
���ϴ �microsoft? sql server? 2000 �ṩ��}����Ҫ����4ǿ��ҵ�������������� � ��ʹ�����

2���α�����ã����֪���α��Ѿ��������

�� ��α ��Ҫ�Ƕ�λ���� һ�����Ϊtrueʱ�����ǵ����

���մ ��α�����ṩselect �� �‫��ص‬м���)չ������ʹӦ�ó�����ÿ�δ���һ�л�һ������ ���α����

ͨ
‫�ڶ‬λ�����У����ж�ȫ� ֱ� @@fetch_status�����ж��Ƿ���������
ͨ ˱� ������
� 0�ʾ���������

��� � ʾ��ǰ��
ָ ¼��λ��,���null

3���������Ϊ��ǰ�������º �����}�ִ����к������伶�������м������к����

�� ���ǰ�������� ���ǰ��ִ�д������º ����� ����ִ�д����� ��伶������ִ��ij�����ʱ����ִ�д�����

�м������������¼ʱ��ִ�д�����
���մ ���ǰ�����������‫֮�����¼����ڴ‬ǰ�����º ��������

‫����ͨ��֮�����¼����ڴ‬ǰ�������� �ȡ�¼�֮ǰ���µ��ֶ�ֵ��

��伶��������������ִ��ǰ���ִ�У����м������‫�������ڴ‬Ӱ���ÿһ�д���һ�Ρ�
���ϴ �һ���Dz���ǰ��һ���Dz����

4��ʲô����SQL ‫�ע‬룬��η�ֹ�������˵��

�� ����ó���IJ����‫ڳڳڳڳڳڳڳ‬
��� �‫��������������ܣ‬sql���Ӷ� �� �ƻ��� �Ŀ�ġ���Ҫ�Ǽ�ǿ���������� ����磬

��ǿ����Ƿ����‫�ע‬ͷ�ţ�l���� ��û���Ȩ� ȵȡ�

���մ � ����b/sģʽӦ�ÿ����ķ�չ��ʹ������ģʽ��дӦ�ó���ij���ԱҲԽ4Խ� �������������ҵ�������ż�

����� ��ˮƽ������Ҳ�β �룬� ��һ���ֳ��� �‫�ڱ‬д�����ʱ��û�ж��û������� ĺϷ��Խ����жϣ�ʹӦ�ó�����

‫�ڰ‬ȫ������û������ύһ���� ��ѯ���룬�� �� ‫ص‬Ľ����ijЩ�����֪����‫��������ݣ‬ν��Sql

injection����sql ‫�ע‬롣�ӣѣ�‫����©��ע‬ν�ǡ�ǧ��֮�̣�#����Ѩ��������©������� �Ϊ� 飬ͨ�������

‫�ע�� ���ڳ‬벻�˽⣬��� �����˲��ϸ ���ij�������Ǽ�鵼�¡������

�Ҹ���һ�������ASp�е�Request������ �һ�е�Sql ‫��ע‬say no���������£�


function saferequest(paraname,paratype)
'--- ������� ---
'paraname:�������-�ַ���

'paratype:��������-������(1��ʾ���ϲ��������֣�0��ʾ���ϲ���Ϊ�ַ�)
Dim paravalue
paravalue=request(paraname)
if paratype=1 then
if paravalue="" or not isnumeric(paravalue) then
response.write "����" & Paraname & "��������� �"
response.end
end if
else
paravalue=replace(paravalue,"'","''")
end if
saferequest=paravalue
end function
��� � ����sql� ��ֶ���վ���й����� ���'��

5��ʹ��ʲô����4���ô 洢��̣�
���մ � http����ѯ������Ӧ�ó���
���ϴ ��κ�һ������
6��sql server��}�������Ǻ���ʽ����������ã��������ȱ�

��Ϊ�‫���ۺ‬Ǿ ‫ۺ‬Ͼ‫ۺ‬ϡ�������������ͼ���j�Ľṹ���ɼӿ�ӱ����ͼ�м����е��‫�� ٶ‬

�����ɱ���� �е�һ�л������ɵļ���Щ��洢��һ��ṹ�‫ ʹ�ڣ‬sql server

��� �����Ч���ҵ����ֵ���j��һ�л���С�ȱ�㣺����ά���������岻���������ʱ����Ӱ��ϵ ���‫�ܡ‬

��� � cluster�ͷ�cluster,�� ‫��ٲ‬ң� �ö��� ���ά������ķ�ʱ��


7�������������
�������� �ѯ����
� ���ҿ��
� � ��ӵ�sql
� ������Ҫ����ǿ�Ƹ��ӵ�ҵ������Ҫ�
�����������ǿ����������� �� �����ӡ����»�ɾ����е���ʱ�����֮���Ѷ���Ĺ�ϵ��

��� � ��֤�� �������ܽӵ�֪ͨ

ʮ��.
1����c��ʵ�����¹���
a ����һ��int���飬����Ϊ100����������������1-100�����Ҳ����‫���ظ‬

b ��������ɵ�����������Ҫ֧����� ���}�� ��

2����˵����.net�г��õļ���ҳ�� � ���ķ�������˵�����ǵ���ȱ�㡣
3����˵��.net�еĴ�������ƣ�������
4����˵��ǿ��ĺ���
5�����г�c���м���ѭ���ķ�������ָ�����ǵIJ�ͬ

6����ָ��.net���������͵Ļ���

7����ָ��GAC�ĺ���

8��sql srever�У���һ����в���������‫���ݣ‬ο� ĵõ����� �ֶεĵ�ǰֵ

һ��
list<int> l=new list<int>();
random random = new random();
for (int i = 1; i <= 100; i++)
{
if (l.indexof(i)< 0)
{
l.add(random.next(1,100));
}
}
l.reverse();
l.sort();

����cookie������ȫ�� session���ɿ��������֧ ��Http cookie����� application��Ч�ʵ �

��ѯ�ַ���� database(��ȫ��ǿ) <br>������ ��������� �ҳ�� ��

�ȵȣ���Щ˵˵������У��� �ˡ�����

���쳣�Ǵ� exception ����̳еĶ����쳣�ӷ�������Ĵ���������Ȼ���‫�� ��� �ض‬

‫��ֱ�ݣ‬Ӧ�ó�������������ֹ��
try
{ //ִ�д��룬�� ���Ƿ���� }
catch
{ //���� }
finally
{ //��������,��Ҫִ�� }

��:,���� � ���Ǹ���Ƿ������,� �������� ���4�‫�ڴ‬ж �� ‫�ض����ڴ‬.ǿ����˵�

��DZ���Ҫ�и��������.
��:���̫��.��˵��
��:object
��:ȫ�ַ��ʻ���
��:
insert into jobs (job_desc,min_lvl,max_lvl)
values ('accountant',12,125)

You might also like